2005-11-07 Matthias Clasen <mclasen@redhat.com>
* gtk/gtktoolitem.c (_gtk_tool_item_toolbar_reconfigured):
Raise the drag_window after reconfiguring the
toolbar. (#320803, Christian Persch)
2005-11-07 Matthias Clasen <mclasen@redhat.com>
+ * gtk/gtktoolitem.c (_gtk_tool_item_toolbar_reconfigured):
+ Raise the drag_window after reconfiguring the
+ toolbar. (#320803, Christian Persch)
+
* gtk/gtk.symbols:
* gtk/gtkfilechooserbutton.h:
* gtk/gtkfilechooserbutton.c: Add a focus-on-click property
2005-11-07 Matthias Clasen <mclasen@redhat.com>
+ * gtk/gtktoolitem.c (_gtk_tool_item_toolbar_reconfigured):
+ Raise the drag_window after reconfiguring the
+ toolbar. (#320803, Christian Persch)
+
* gtk/gtk.symbols:
* gtk/gtkfilechooserbutton.h:
* gtk/gtkfilechooserbutton.c: Add a focus-on-click property
g_signal_emit (tool_item, toolitem_signals[TOOLBAR_RECONFIGURED], 0);
gtk_widget_queue_resize (GTK_WIDGET (tool_item));
+
+ if (tool_item->priv->drag_window)
+ gdk_window_raise (tool_item->priv->drag_window);
}
#define __GTK_TOOL_ITEM_C__